home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
scanfax2.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
922b
|
52 lines
/*
* $VER: ScanFax 2.0.0 (8.6.93)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* Updated for ImageFX 2.0.
*
* Scan multiple monochrome pages from an Epson ES800C with a
* document feeder attachment, save as FAXX files for PhonePak.
* You must enable the document feeder before running this macro.
*
*/
OPTIONS RESULTS
RequestFile '"Output Fax File:"'
IF rc ~= 0 THEN EXIT
faxfile = result
RequestThree '"Fax Resolution:"' 'Normal' 'Fine' 'Cancel'
IF rc ~= 0 THEN EXIT
res = result
IF res = 'Normal' THEN
yd = 100
ELSE
yd = 200
Menu Scanner
pagenum = 1
DO FOREVER
Message 'Scanning Page' pagenum
/* requires 2.0 */
Scanner DetailScan LENGTH 11 Mono Dpix 200 Dpiy yd ADF MAPPED
IF rc ~= 0 THEN LEAVE
SaveRenderedAs FAXX '"'faxfile'"' Keep Fine
pagenum = pagenum + 1
END
SaveRenderedAs FAXX '"'faxfile'"' Close
KillMapped
EXIT